home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-23 | 608 b | 32 lines | [TEXT/CWIE] |
- // LayerGroupsDoc.h -- document-level functions
-
- #pragma once
-
- #include "AMDoc.h"
-
- class LayerGroupsEngine;
-
- //----------
- class LayerGroupsDoc : public AMDoc {
- public:
- LayerGroupsDoc ();
- virtual ~LayerGroupsDoc ();
-
- public:
- virtual Boolean DoCommand (long inCommand);
-
- protected:
- virtual void OpenWindows ();
- virtual Boolean WouldCloseDoc (WindowPtr windPtr);
-
- virtual LayerGroupsEngine* GetEngine ();
-
- virtual void DoInvokeAbout ();
- virtual void DoShowEditFields ();
-
- public: // later - will be protected:
- WindowPtr mTabPanelPtr;
- WindowPtr mPopupGroupBoxPtr;
- WindowPtr mListboxPtr;
- };
-